home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2005 July & August
/
PCWorld_2005-07-08_cd.bin
/
software
/
vyzkuste
/
drivex
/
setup.exe
/
{app}
/
DrivEx.chm
/
scripts
/
helpers.js
Wrap
Text File
|
2005-02-19
|
1KB
|
25 lines
function WriteHeader( title )
{
document.write( '<BODY> ');
document.write( '<TABLE width=100% CELLSPACING=0 cellpadding=5 border=0 > ');
document.write( '<TR width=100% class=HeaderBar bgcolor=#0000FF> ');
document.write( ' <TD height=50>' + title + '</TD> ');
document.write( ' <TD align=right><IMG src=Pictures/logo.gif></TD> ');
document.write( '</TR> ');
document.write( '<TR bgcolor=#ffffff><TD height=1 colspan=2></TD></TR> ');
document.write( '<TR bgcolor=#9999ff><TD height=1 colspan=2></TD></TR> ');
document.write( '<TR bgcolor=#ffffff><TD height=1 colspan=2></TD></TR> ');
document.write( '<TR bgcolor=#9999ff><TD height=1 colspan=2></TD></TR> ');
document.write( '<TR><TD colspan=2>');
}
function WriteFooter()
{
document.write( '</TD></TR> ');
document.write( '<TR bgcolor=#9999ff><TD height=1 colspan=2></TD></TR> ');
document.write( '<TR class=FootBar align=center> ');
document.write( ' <TD colspan=2>Deno 2005</TD> ');
document.write( '</TR> ');
document.write( '</TABLE> ');
document.write( '</BODY>' );
}